home *** CD-ROM | disk | FTP | other *** search
/ Gamers Delight 2 / Gamers Delight 2.iso / Aminet / game / misc / Orm.lha / Orm / Makefile < prev    next >
Makefile  |  1993-12-22  |  751b  |  38 lines

  1. ## Makefile for 'Orm'
  2. ## Torsten Poulin 12-Oct-93
  3. ##
  4. ## The source code for 'Orm' can be compiled without change
  5. ## using either DICE or SAS/C.
  6.  
  7. ## Uncomment the following three lines to use SAS/C 5.10
  8. #CC = lc
  9. #LOPTS = -Lvcdn
  10. #COPTS = -v -cis -rr -O -ms $(LOPTS)
  11. ## Uncomment the following three lines to use DICE
  12. CC = dcc
  13. LOPTS = -l locales.lib
  14. COPTS = $(LOPTS) -o Orm
  15.  
  16. Orm: orm.c orm.h
  17.     $(CC) $(COPTS) Orm.c
  18.  
  19. orm.h: orm.cd
  20.     catcomp orm.cd cfile Orm.h
  21.  
  22. archive:
  23.     -delete orm.lha quiet > nil:
  24.     lha -r a orm.lha #?
  25.  
  26. orm.man: orm.6
  27.     nroff -man orm.6 > orm.man
  28.  
  29. clean:
  30.     -delete orm.lnk quiet
  31.     -delete orm.o quiet
  32.  
  33. ## Uncomment the following lines if you use Ben Eng's BMake;
  34. ## leave them commented out if you use SAS lmk:
  35. orm.cd: .NEVER
  36. orm.6: .NEVER
  37.  
  38.